/* Essential stuff */

#dropdown,
#dropdown * {
	margin: 0px;
	padding: 0px;
	list-style: none;
}

#dropdown {
	line-height: 1.0em;
}

#dropdown ul {
	position: absolute;
	top: -999em;
	width: 145px; /* Left offset of submenus need to match (see below) */
	padding-right: 10px;
	padding-bottom: 2px;
}

#dropdown ul li {
	width: 100%;
}

#dropdown li:hover {
	visibility: inherit; /* Fixes IE7 'sticky bug' */
}

#dropdown li {
	float: left;
	position: relative;
}

#dropdown a {
	display: block;
	position: relative;
}

#dropdown li:hover ul,
#dropdown li.sfHover ul {
	left: 0px;
	top: 2.5em; /* Match top ul list item height */
	z-index: 99;
}

ul#dropdown li:hover li ul,
ul#dropdown li.sfHover li ul {
	top: -999em;
}

ul#dropdown li li:hover ul,
ul#dropdown li li.sfHover ul {
	left: 10em; /* Match ul width */
	top: 0px;
}

ul#dropdown li li:hover li ul,
ul#dropdown li li.sfHover li ul {
	top: -999em;
}

ul#dropdown li li li:hover ul,
ul#dropdown li li li.sfHover ul {
	left: 10em; /* Match ul width */
	top: 0px;
}

/* Custom Skin */

#dropdown {
	float: left;
	margin-bottom: 1em;
}

#dropdown a {
	padding: 10px 22px;
	text-decoration: none;
}

#dropdown li.first_item_selected>a,
#dropdown li.selected>a,
#dropdown li.level2_selected>a,
#dropdown li.level3_selected>a,
#dropdown li.level4_selected>a,
#dropdown li.level5_selected>a {
	font-weight: bold;
}

#dropdown>li {
	border-right: 2px solid #f9d299;
	height: 33px;
}

#dropdown a,
#dropdown li:hover,
#dropdown li.sfHover,
#dropdown a:focus,
#dropdown a:hover,
#dropdown a:active {
	color: white;
	outline: 0;
}

/* Arrows */

#dropdown a.sf-with-ul {
	padding-right: 2.25em;
	min-width: 1px; /* Trigger IE7 hasLayout so spans position accurately */
}

.sf-sub-indicator {
	position: absolute;
	display: block;
	right: .75em;
	top: 1.05em; /* IE6 only */
	width: 10px;
	height: 10px;
	text-indent: -999em;
	overflow: hidden;
	background: url('../shared_files/images/superfish/arrows-000000.png') no-repeat -10px -100px; /* 8-bit indexed alpha png. IE6 gets solid image only */
}

a>.sf-sub-indicator { /* Give all except IE6 the correct values */
	top: .8em;
	background-position: 0px -100px; /* Use translucent arrow for modern browsers */
}

/* Apply hovers to modern browsers */
a:focus>.sf-sub-indicator,
a:hover>.sf-sub-indicator,
a:active>.sf-sub-indicator,
li:hover>a>.sf-sub-indicator,
li.sfHover>a>.sf-sub-indicator {
	background-position: -10px -100px; /* arrow hovers for modern browsers */
}

/* Point right for anchors in subs */
#dropdown ul .sf-sub-indicator {
	background-position:  -10px 0px;
}

#dropdown ul a>.sf-sub-indicator {
	background-position: 0px 0px;
}

/* Apply hovers to modern browsers */
#dropdown ul a:focus>.sf-sub-indicator,
#dropdown ul a:hover>.sf-sub-indicator,
#dropdown ul a:active>.sf-sub-indicator,
#dropdown ul li:hover>a>.sf-sub-indicator,
#dropdown ul li.sfHover>a>.sf-sub-indicator {
	background-position: -10px 0px; /* Arrow hovers for modern browsers */
}

/* Shadows for all but IE6 */
.sf-shadow ul {
	background-color: #F19005;
	padding: 0px 8px 9px 0px;
	-moz-border-radius-bottomleft: 17px;
	-moz-border-radius-topright: 17px;
	-webkit-border-top-right-radius: 17px;
	-webkit-border-bottom-left-radius: 17px;
}

.sf-shadow ul.sf-shadow-off {
	background: transparent;
}
